home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Windows Expert
/
Windows Expert.iso
/
windownt
/
wpj1_8.zip
/
FDIAG.ZIP
/
FDIAGVW.H
< prev
next >
Wrap
C/C++ Source or Header
|
1993-08-12
|
964b
|
42 lines
// fdiagvw.h : interface of the CFdiagView class
//
/////////////////////////////////////////////////////////////////////////////
class CFdiagView : public CView
{
protected: // create from serialization only
CFdiagView();
DECLARE_DYNCREATE(CFdiagView)
// Attributes
public:
CFdiagDoc* GetDocument();
// Operations
public:
// Implementation
public:
virtual ~CFdiagView();
virtual void OnDraw(CDC* pDC); // overridden to draw this view
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
// Generated message map functions
protected:
//{{AFX_MSG(CFdiagView)
afx_msg void OnFileOpenwithnewfiledialogbox();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#ifndef _DEBUG // debug version in fdiagvw.cpp
inline CFdiagDoc* CFdiagView::GetDocument()
{ return (CFdiagDoc*) m_pDocument; }
#endif
/////////////////////////////////////////////////////////////////////////////